home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000114-20000217 / 000167_news@columbia.edu _Thu Jan 27 19:28:15 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA03305
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 27 Jan 2000 19:28:15 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA23964
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 27 Jan 2000 19:17:00 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: No Screen Output During Scripted Transfers ?
  11. Date: 28 Jan 2000 00:16:59 GMT
  12. Organization: Columbia University
  13. Message-ID: <86qn5r$ncp$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <38909fa6.6586606@news.demon.co.uk>,
  17. Nick Boyce  <nick@glimmer.demon.co.uk> wrote:
  18. : I have an annoying but non-critical problem with scripted Kermit file
  19. : transfers not displaying anything (at all) to the screen.
  20. : ...
  21. : I ... am feeding it into Kermit using "kermit < myscript.scr" at a
  22. : Unix command prompt.
  23. That's why you don't see the display.  Kermit senses that its standard
  24. input is not a terminal, and therefore does not attempt to write anything
  25. to the terminal, since that could cause it to block.
  26.  
  27. Just remove the "<" from your command line:
  28.  
  29.   kermit myscript.scr
  30.  
  31. Make sure the script terminates with an EXIT command.
  32.  
  33. - Frank